home *** CD-ROM | disk | FTP | other *** search
/ Most Valuable Games 2 / Most Valuable Games Volume 2 (MVP Publishing)(August 1995).iso / arcade / outridge / start.bat < prev    next >
DOS Batch File  |  1995-07-27  |  489b  |  25 lines

  1. cls
  2. echo off
  3. echo This file will copy the game OUTER RIDGE to your 'C' hard disk.
  4. echo It requires 1 MEG of hard drive space.
  5. echo After you run it, you will be given the option of removing it from your
  6. echo hard drive. Just answer 'yes' to the delete question.
  7.  
  8. choice /c:yn Go ahead with the copy to hard drive?
  9. if errorlevel 2 goto end
  10. if errorlevel 1 goto copy
  11. goto end
  12.  
  13. :copy
  14. xcopy *.* c:\outridge\
  15. c:
  16. cd \outridge
  17. setup
  18. outridge
  19.  
  20.  
  21. cd..
  22. deltree outridge
  23.  
  24. :end
  25.